翻訳と辞書
Words near each other
・ Myspace.c
・ Myspace.con
・ Myspace.coom
・ Myspace.copm
・ Myspace.cpm
・ Myspace.m
・ Myspace.ocm
・ MySpell
・ MySQL
・ MySQL AB
・ MySQL Archive
・ MySQL Cluster
・ MySQL Connector/ODBC
・ MySQL DataController
・ MySQL Enterprise
MySQL Federated
・ MySQL Manager
・ MySQL Workbench
・ MysqlBind
・ MySQLi
・ Myssjö-Ovikens IF
・ Mysskin
・ Myst
・ Myst (series)
・ MYST1
・ MYST3
・ MYST4
・ Mystacella
・ Mystacidium
・ Mystacinidae


Dictionary Lists
翻訳と辞書 辞書検索 [ 開発暫定版 ]
スポンサード リンク

MySQL Federated : ウィキペディア英語版
MySQL Federated

The MySQL Federated storage engine for the MySQL relational database management system is a storage engine which allows a user to create a table that is a local representation of a foreign (remote) table. It utilizes the MySQL client library API as a data transport, treating the remote data source the same way other storage engines treat local data sources whether they be MYD files (MyISAM), memory (Cluster, Heap), or tablespace (InnoDB).
Each Federated table that is defined there is one .frm (data definition file containing information such as the URL of the data source). The actual data can exist on a local or remote MySQL instance.
To create a Federated table, one has to specify a URL in the "CONNECTION" string:

create table t1 (
a int,
b varchar(32))
ENGINE=FEDERATED CONNECTION='mysql://user@hostname/test/t1'

The connection URL is in the format of:
scheme://user:pass@host:port/schema/tablename
Upon creation of a Federated table, the user must ensure that the remote data source does indeed exist or an error will be issued.
The MySQL Federated Storage Engine was authored by Patrick Galbraith and Brian Aker and is currently being maintained by Patrick Galbraith and Antony Curtis. It was introduced in 2005 with MySQL 5.0.
== External links ==

* (MySQL Documentation on Federated Storage Engine )


抄文引用元・出典: フリー百科事典『 ウィキペディア(Wikipedia)
ウィキペディアで「MySQL Federated」の詳細全文を読む



スポンサード リンク
翻訳と辞書 : 翻訳のためのインターネットリソース

Copyright(C) kotoba.ne.jp 1997-2016. All Rights Reserved.